changed the order of the arguments. #80278
authorErwann Chenede - <erwann.chenede@sun.com>
Fri, 3 May 2002 17:19:11 +0000 (17:19 +0000)
committerErwann Chenede <erwannc@src.gnome.org>
Fri, 3 May 2002 17:19:11 +0000 (17:19 +0000)
2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>

        * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
changed the order of the arguments. #80278

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkplug.c
gtk/gtkplug.h

index 3ee815c2319f66d3566ab8779cb63e12af977dfc..2767b35d832863bd5baf7ab121341e6c8d6e1f37 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+  
+        * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+       changed the order of the arguments. #80278
+
 2002-05-02  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
index 3ee815c2319f66d3566ab8779cb63e12af977dfc..2767b35d832863bd5baf7ab121341e6c8d6e1f37 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+  
+        * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+       changed the order of the arguments. #80278
+
 2002-05-02  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
index 3ee815c2319f66d3566ab8779cb63e12af977dfc..2767b35d832863bd5baf7ab121341e6c8d6e1f37 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+  
+        * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+       changed the order of the arguments. #80278
+
 2002-05-02  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
index 3ee815c2319f66d3566ab8779cb63e12af977dfc..2767b35d832863bd5baf7ab121341e6c8d6e1f37 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+  
+        * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+       changed the order of the arguments. #80278
+
 2002-05-02  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
index 3ee815c2319f66d3566ab8779cb63e12af977dfc..2767b35d832863bd5baf7ab121341e6c8d6e1f37 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+  
+        * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+       changed the order of the arguments. #80278
+
 2002-05-02  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
index 3ee815c2319f66d3566ab8779cb63e12af977dfc..2767b35d832863bd5baf7ab121341e6c8d6e1f37 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+  
+        * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+       changed the order of the arguments. #80278
+
 2002-05-02  Matthias Clasen  <maclas@gmx.de>
 
        * gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
index 2b4a4084c0ae1f7aabdb6b88949210f1619f1dc8..44c2984204f5af086ec145de030b28535dff04e8 100644 (file)
@@ -320,14 +320,14 @@ void
 gtk_plug_construct (GtkPlug         *plug,
                    GdkNativeWindow  socket_id)
 {
-  gtk_plug_construct_for_display (gdk_get_default_display (), plug, socket_id);
+  gtk_plug_construct_for_display (plug, gdk_get_default_display (), socket_id);
 }
 
 /**
  * gtk_plug_construct_for_display:
+ * @plug: a #GtkPlug.
  * @display: the #GdkDisplay associated with @socket_id's 
  *          #GtkSocket.
- * @plug: a #GtkPlug.
  * @socket_id: the XID of the socket's window.
  *
  * Finish the Initialization of @plug for a given #GtkSocket identified by
@@ -335,8 +335,8 @@ gtk_plug_construct (GtkPlug         *plug,
  * This function will generally only be used by classes deriving from #GtkPlug.
  **/
 void
-gtk_plug_construct_for_display (GdkDisplay     *display,
-                               GtkPlug         *plug,
+gtk_plug_construct_for_display (GtkPlug         *plug,
+                               GdkDisplay      *display,
                                GdkNativeWindow  socket_id)
 {
   if (socket_id)
@@ -398,7 +398,7 @@ gtk_plug_new_for_display (GdkDisplay          *display,
   GtkPlug *plug;
 
   plug = GTK_PLUG (gtk_type_new (GTK_TYPE_PLUG));
-  gtk_plug_construct_for_display (display, plug, socket_id);
+  gtk_plug_construct_for_display (plug, display, socket_id);
   return GTK_WIDGET (plug);
 }
 
index 38a19f6bfea30517c2139e9ded61b7f8fba06547..139189e7301996b9040c6a46c6b8cc6b53578a56 100644 (file)
@@ -83,8 +83,8 @@ void       gtk_plug_construct (GtkPlug         *plug,
 GtkWidget* gtk_plug_new       (GdkNativeWindow  socket_id);
 #endif
 
-void       gtk_plug_construct_for_display (GdkDisplay      *display,
-                                          GtkPlug         *plug,
+void       gtk_plug_construct_for_display (GtkPlug         *plug,
+                                          GdkDisplay      *display,
                                           GdkNativeWindow  socket_id);
 GtkWidget* gtk_plug_new_for_display       (GdkDisplay      *display,
                                           GdkNativeWindow  socket_id);